home *** CD-ROM | disk | FTP | other *** search
- unit About1;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls, Buttons, ComServ;
-
- type
- TXDesktopAbout = class(TForm)
- CtlImage: TSpeedButton;
- NameLbl: TLabel;
- OkBtn: TButton;
- CopyrightLbl: TLabel;
- DescLbl: TLabel;
- procedure FormCreate(Sender: TObject);
- end;
-
- procedure ShowXDesktopAbout;
-
- implementation
-
- {$R *.DFM}
-
- procedure ShowXDesktopAbout;
- begin
- with TXDesktopAbout.Create(nil) do
- try
- ShowModal;
- finally
- Free;
- end;
- end;
-
- procedure TXDesktopAbout.FormCreate(Sender: TObject);
- var
- Buff: array [0..255] of Char;
- begin
- GetModuleFileName (hInstance, Buff, sizeof (Buff));
- DescLbl.Caption := Buff;
- end;
-
- end.
-